c/local farting = {"8551016315","9113795619","9113151493","9120635229","9113150517","9114371109","6794882849","7208614920"} local screaming = {"887549084","5538539107","9125652683","9114399873","9114398795","6108565657","566988981"} local parent = workspace function Sound(id,volume,parent) local sound = Instance.new("Sound") sound.Parent = parent sound.SoundId = "rbxassetid://"..id sound.Volume = volume sound.Ended:Connect(function() sound:Destroy() end) sound:Play() end local funny = 0 while true do funny += 0.01 if math.random(1,2) == 1 then Sound(farting[math.random(1,#farting)],funny,parent) else Sound(screaming[math.random(1,#screaming)],funny,parent) end task.wait(math.random(30,60)/10) end